home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / AUDIO / MIDICOM2 / MIDIMON.DPR < prev    next >
Text File  |  1996-04-30  |  471b  |  22 lines

  1. { $Header:   G:/delphi/midi/vcs/midimon.dpr   1.2   30 Apr 1996 19:05:38   DAVEC  $ }
  2.  
  3. { Written by David Churcher <dchurcher@cix.compulink.co.uk>,
  4.   released to the public domain. }
  5.  
  6. program Midimon;
  7.  
  8. uses
  9.   Forms,
  10.   Midimonp in 'MIDIMONP.PAS' {Form1},
  11.   MIDIIn in 'MIDIIN.PAS',
  12.   Circbuf in 'CIRCBUF.PAS',
  13.   midiout in 'MIDIOUT.PAS',
  14.   Monprocs in 'MONPROCS.PAS';
  15.  
  16. {$R *.RES}
  17.  
  18. begin
  19.   Application.CreateForm(TForm1, Form1);
  20.   Application.Run;
  21. end.
  22.